home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / recio202.zip / readme < prev    next >
Text File  |  1994-05-05  |  3KB  |  79 lines

  1. recio, Version 2.02, Release May 5, 1994.
  2. Copyright (C) 1994, William Pierpoint.
  3.  
  4.  
  5. Description
  6. -----------
  7. The recio library consists of a set of more than 75 functions that make 
  8. it easy to read and write text files in which each line is treated as a 
  9. data record, and each record is subdivided into fields.  Fields may be 
  10. either character delimited or column delimited.  The learning curve is 
  11. rapidly traversed because (1) functions are based on analogous counterparts 
  12. in stdio and (2) function names are based on consistent mnemonics.
  13.  
  14.  
  15. Getting Started
  16. ---------------
  17. First check the MANIFEST file for brief one line descriptions of the files 
  18. in this release.
  19.  
  20. Learning the recio functions will be easier if you read the documentation 
  21. in the following order:
  22.  
  23. TUTOR.TXT  - Introductory material including some simple example programs.
  24. USAGE.TXT  - Shows the typical order in which functions are used.
  25. SPEC.TXT   - Specification of all functions and macros.  Use as reference.
  26. TIPS.TXT   - Tips and ideas on using the recio functions.
  27. DESIGN.TXT - Design and development notes.
  28.  
  29. To save disk space, this package contains the executable for only one of 
  30. the test programs.  Source for other test programs is included.  To make 
  31. all the test programs, see MKTEST.BAT.  This package also contains the 
  32. libraries for only the small and large memory models.  To make libraries 
  33. for all memory models, see MKLIBS.BAT.
  34.  
  35. All you need to do to use the recio functions in your application is to
  36.  
  37. #include "recio.h"
  38.  
  39. in your source code and link using the recio library for the memory model 
  40. you are using.  For example, if using the small memory model, link with 
  41. RECIOS.LIB.  If you use a compiler other than Borland C 3.1, you will need 
  42. to recompile the source code.
  43.  
  44.  
  45. Source Code
  46. -----------
  47. Complete C source code for recio is provided.  To recompile, you will need 
  48. an ANSI-C compatible compiler.  This release used Borland C 3.1.  MKLIBS.BAT 
  49. will generate all the libraries for this compiler.  Modify the MAKEFILE to 
  50. reflect your setup and to set the memory model.  To use another compiler, 
  51. you will need to generate libraries or object code for that compiler.
  52.  
  53.  
  54. Distribution
  55. ------------
  56. This is free software; you can redistribute it and/or modify it under the 
  57. terms of the GNU General Public License, Version 1, February 1989, as 
  58. published by the Free Software Foundation.
  59.  
  60. This software is distributed in the hope that it will be useful, but 
  61. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
  62. or FITNESS FOR A PARTICULAR PURPOSE.  More details on the GNU General 
  63. Public License can be found in the file COPYRITE.
  64.  
  65. You should have received a copy of the GNU General Public License along 
  66. with this program; if not, write to the Free Software Foundation, Inc., 
  67. 675 Mass Ave, Cambridge, MA 02139, USA.
  68.  
  69.  
  70. Contact
  71. -------
  72. Please send feedback to:
  73.  
  74.         bill@anacapa.ncel.navy.mil
  75. or
  76.         Bill Pierpoint
  77.         1152 Harris Avenue
  78.         Camarillo, CA 93010-2921
  79.